home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / tour.dxr / 00425_Platform and Fileio.ls < prev    next >
Encoding:
Text File  |  2000-01-21  |  225 b   |  16 lines

  1. on getParentFolder path
  2.   if the machineType = 256 then
  3.     return path & "..\"
  4.   else
  5.     return path & ":"
  6.   end if
  7. end
  8.  
  9. on getPathDelimiter
  10.   if the machineType = 256 then
  11.     return "\"
  12.   else
  13.     return ":"
  14.   end if
  15. end
  16.